home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1997
/
MacHack 1997.toast
/
Hacks
/
Hacks ’94
/
[√] Distribution Restricted!
/
Brian Hamlin
/
Boom!
/
HackGlue.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-06-24
|
214b
|
21 lines
#include <SANE.h>
#undef NAN
#include <fp.h>
double_t sin ( double_t x )
{
extended80 temp = x;
Sin(&temp);
return temp;
}
double_t cos ( double_t x )
{
extended80 temp = x;
Cos(&temp);
return temp;
}